home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / comms / other / novia / src / include / novia_date.h < prev    next >
C/C++ Source or Header  |  1999-12-06  |  502b  |  25 lines

  1. #ifndef NOVIA_DATE_H
  2. #define NOVIA_DATE_H
  3. #define NOVIA_DATE_H_VERSION "$VER: 0.01 (08.05.1998)"
  4. // (c) Copyright 1996-1998 by Thorsten Gehler
  5. // All rights reserved. Read license.readme for copyright informations.
  6.  
  7. #ifndef EXEC_TYPES_H
  8. #include <exec/types.h>
  9. #endif
  10.  
  11. #define DATEFLAG_USEDATE    1
  12. #define DATEFLAG_USETIME    2
  13.  
  14. struct Date {
  15.     ULONG    datecode;    // 4
  16.     WORD    year;        // 6
  17.     BYTE    month;        // 7
  18.     BYTE    day;        // 8
  19.     BYTE    hours;        // 9
  20.     BYTE    mins;        // 10
  21.     BYTE    secs;        // 11
  22.     BYTE    weekday;    // 12
  23. };
  24.  
  25. #endif